home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / dev / c / restracklib_0_2.lha / ResTrackLib / asl.c < prev    next >
C/C++ Source or Header  |  1994-07-31  |  761b  |  49 lines

  1.  
  2. #include <stdio.h>
  3. #include <clib/asl_protos.h>
  4. #ifdef REGARGS
  5. #   include <pragmas/asl_pragmas.h>
  6. #endif
  7.  
  8. APTR AllocAslRequest (ULONG type,struct TagItem * ptags)
  9. {
  10.     APTR ret;
  11.  
  12.     if ( (ret = AllocAslRequest (type,ptags)) != NULL)
  13.     CHECK_ADD_RN1(RTL_ASL,RTLRT_AslRequest,type)
  14.  
  15.     return (ret);
  16. } /* AllocAslRequest */
  17.  
  18.  
  19.  
  20. APTR AllocAslRequestTAGS (ULONG type, ...)
  21. {
  22.     APTR ret;
  23.  
  24.     if ( (ret = AllocAslRequestTAGS (type,...)) )
  25.     CHECK_ADD_RN1(RTL_ASL,RTLRT_AslRequest,type)
  26.  
  27.     return (ret);
  28. } /* AllocAslRequestTAGS */
  29.  
  30.  
  31.  
  32. struct FileRequester * AllocFileRequest (ULONG type)
  33. {
  34.     struct FileRequester * ret;
  35.  
  36.     if ( (ret = AllocFileRequest (type)) )
  37.     CHECK_ADD_RN1(RTL_ASL,RTLRT_AslRequest,-)
  38.  
  39.     return (ret);
  40. } /* AllocFileRequest */
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.